inflections 1.1.1

High performance inflection transformation library for changing properties of words like the case.
Documentation
  • Coverage
  • 53.49%
    23 out of 43 items documented23 out of 43 items with examples
  • Size
  • Source code size: 28.68 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.09 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Documentation
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • japaric calebmer

inflections

A Rust library for transforming one style of string to another focused on high performance.

Read the documentation for more.

Example

use inflections::Inflect;

assert_eq!("Hello World".to_camel_case(), "helloWorld".to_owned());